Mongo Info
constructor(mongoAddress: String = if (System.getenv("DB_CONNECTION_ADDRESS") == null) {
"mongodb://localhost:27017"
} else {
System.getenv(
"DB_CONNECTION_ADDRESS",
)
}, databaseName: String = "Warehouse", collectionName: String = "Ingredient")
Parameters
mongo Address
port to connect
database Name
name of the database
collection Name
name of the collection